{% extends "base.html" %} {% block title %}My Dashboard — LegalEase AI{% endblock %} {% block content %}
Welcome back, {{ user.full_name }}{% if user.city %} · {{ user.city }}{% endif %}
| Category | Status | Date | |
|---|---|---|---|
| {{ case.category or '—' }} | {% if case.status in ('reviewed', 'filed', 'hearing_scheduled', 'resolved') %} {{ case.status|title }} {% elif case.status == 'pending' %} Under Review {% else %} {{ case.status|title }} {% endif %} | {{ case.created_at.strftime('%b %d, %Y') }} | View |
| Date | Time | Status | |
|---|---|---|---|
| {{ appt.appointment_date }} | {{ appt.appointment_time }} | {% if appt.status == 'confirmed' %} Confirmed {% elif appt.status == 'cancelled' %} Cancelled {% else %} Pending {% endif %} | {% if appt.case_id %} View Case {% endif %} |